Platform Explorer / Nuxeo Platform LTS 2017 9.10

Contribution org.nuxeo.ecm.platform.admin.center.actions.widgets--widgets

This contribution is part of XML component org.nuxeo.ecm.platform.admin.center.actions.widgets inside nuxeo-admin-center-jsf-9.10.jar /OSGI-INF/action-widgets-contrib.xml

Extension Point

Extension point widgets of component WebLayoutManager.

Contributed Items

  • <widget name="adminCenterTabs" type="tabs">
          <properties mode="view">
            <property name="actionsDisplay">links</property>
            <property name="addForm">true</property>
            <property name="useAjaxForm">#{useAjaxTabs}</property>
            <property name="category">NUXEO_ADMIN</property>
            <property name="actions">#{adminViews.availableActions}</property>
            <property name="currentTabAction">#{adminViews.currentView}</property>
            <property name="overallDisplay">vertical_block</property>
            <property name="tabContentBeforeInclude">/incl/appcenter/admin_tab_header.xhtml</property>
          </properties>
        </widget>
  • <widget name="adminCenterSubTabs" type="tabs">
          <properties mode="view">
            <property name="actionsDisplay">links</property>
            <property name="addForm">true</property>
            <!-- use ajax only if bookmarkable URLs can be preserved -->
            <property name="useAjaxForm">#{canUseAjaxTabs}</property>
            <property name="actions">#{adminViews.availableSubActions}</property>
            <property name="currentTabAction">#{adminViews.currentSubView}</property>
          </properties>
        </widget>

XML Source

<extension point="widgets" target="org.nuxeo.ecm.platform.forms.layout.WebLayoutManager">

    <widget name="adminCenterTabs" type="tabs">
      <properties mode="view">
        <property name="actionsDisplay">links</property>
        <property name="addForm">true</property>
        <property name="useAjaxForm">#{useAjaxTabs}</property>
        <property name="category">NUXEO_ADMIN</property>
        <property name="actions">#{adminViews.availableActions}</property>
        <property name="currentTabAction">#{adminViews.currentView}</property>
        <property name="overallDisplay">vertical_block</property>
        <property name="tabContentBeforeInclude">/incl/appcenter/admin_tab_header.xhtml</property>
      </properties>
    </widget>

    <widget name="adminCenterSubTabs" type="tabs">
      <properties mode="view">
        <property name="actionsDisplay">links</property>
        <property name="addForm">true</property>
        <!-- use ajax only if bookmarkable URLs can be preserved -->
        <property name="useAjaxForm">#{canUseAjaxTabs}</property>
        <property name="actions">#{adminViews.availableSubActions}</property>
        <property name="currentTabAction">#{adminViews.currentSubView}</property>
      </properties>
    </widget>

  </extension>